home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
lib
/
c
/
stdio
/
RCS
/
stdio.lint,v
< prev
next >
Wrap
Text File
|
1988-07-27
|
2KB
|
86 lines
head 1.3;
access ;
symbols ;
locks ; strict;
comment @@;
1.3
date 88.07.27.18.09.07; author ouster; state Exp;
branches ;
next 1.2;
1.2
date 88.07.27.18.06.29; author ouster; state Exp;
branches ;
next 1.1;
1.1
date 88.07.25.14.46.24; author ouster; state Exp;
branches ;
next ;
desc
@@
1.3
log
@More syntax and lint errors.
@
text
@/*
* stdio.lint --
*
* This file contains dummy procedure declarations that are
* processed when generating a lint library. They provide
* procedure-like definitions for getc and putc.
*
* Copyright 1988 Regents of the University of California
* Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and without
* fee is hereby granted, provided that the above copyright
* notice appear in all copies. The University of California
* makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without
* express or implied warranty.
*
* $Header: stdio.lint,v 1.2 88/07/27 18:06:29 ouster Exp $ SPRITE (Berkeley)
*/
#include <stdio.h>
/* ARGSUSED */
int getc(stream) FILE *stream; {return 0;}
/* ARGSUSED */
int putc(c, stream) char c; FILE *stream; {return 0;}
@
1.2
log
@Forgot to include stdio.h
@
text
@d17 1
a17 1
* $Header: stdio.lint,v 1.1 88/07/25 14:46:24 ouster Exp $ SPRITE (Berkeley)
d22 4
a25 2
int getc(stream) FILE *stream; {return 0}
int putc(c, stream) char c; FILE *stream; {return 0}
@
1.1
log
@Initial revision
@
text
@d17 1
a17 1
* $Header: proto.h,v 1.2 88/03/11 08:39:40 ouster Exp $ SPRITE (Berkeley)
d19 2
@